home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Interplay's Learn to Program Basic (Review Copy)
/
Learn to Program Basic Review Copy (Interplay)(June 23, 1998).ISO
/
pc
/
ltpbasic
/
refxmpl
/
return.bas
< prev
next >
Wrap
BASIC Source File
|
1998-04-07
|
248b
|
18 lines
CLS
Print "Enter your name:"
Input name$
Gosub Backward
Print "Enter your friend's name:"
Input name$
Gosub Backward
End
Backward:
Print name$ " spelled backwards is "
For c = Len(name$) To 1 Step -1
Print Mid$(name$,c,1);
Next c
Print
Return